From 1d120b0ca5f7a88507815e54be320c163f1fb33a Mon Sep 17 00:00:00 2001 From: Rob Church Date: Sat, 29 Apr 2006 22:13:41 +0000 Subject: [PATCH] (bug 5565) Add a class attribute to the table on Special:Allpages --- RELEASE-NOTES | 1 + includes/SpecialAllpages.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index daac35bd42..1d41c07eff 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -146,6 +146,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN recent changes table; add reporting and silent modes * Cleaned up formatNum usage in langfiles * (bug 5716) Warn when a user tries to upload a file which was previously deleted +* (bug 5565) Add a class attribute to the table on Special:Allpages == Compatibility == diff --git a/includes/SpecialAllpages.php b/includes/SpecialAllpages.php index f4a2c95968..8ea51ba912 100644 --- a/includes/SpecialAllpages.php +++ b/includes/SpecialAllpages.php @@ -156,7 +156,7 @@ function showToplevel ( $namespace = NS_MAIN, $including = false ) { } # At this point, $lines should contain an even number of elements. - $out .= ""; + $out .= "
"; while ( count ( $lines ) > 0 ) { $inpoint = array_shift ( $lines ); $outpoint = array_shift ( $lines ); -- 2.20.1